home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 4 / PC World Interactive 4.iso / online / appbar.EXE / csrc / makefile < prev    next >
Makefile  |  1996-09-23  |  1KB  |  46 lines

  1. ##############################################################
  2. #
  3. # Visual C++ v4.x Makefile for AppBar
  4. #
  5. # You will need to set the LIBPATH and other variables.
  6. # In VC4.x, you do this by running VCVARS32.BAT found
  7. # in the BIN dir.
  8. #
  9. ##############################################################
  10. #           User configurable options
  11. # Uncomment if debugging
  12. #LDBG=-debug
  13. #CDBG=-Zi
  14.  
  15. ###### Uncomment if Windows NT 3.x
  16. #OPSYS=-D_WINNT
  17.  
  18. ###### Language (Uncomment your language)
  19.  
  20. #LANG=ENGLISH
  21. LANG=GERMAN
  22.  
  23. #
  24. ##############################################################
  25. # minimize size, Pentium opt, disable stack checking
  26. CPPFLAGS=-O1 -Gs -G5 -W3 -DWIN32 -D_X86_ -D$(LANG) $(CDBG) $(OPSYS) -nologo
  27. LINKOPTS=-subsystem:windows -machine:IX86 -nologo $(LDBG)
  28.  
  29. LIBS=kernel32.lib gdi32.lib winmm.lib user32.lib shell32.lib\
  30.      advapi32.lib comdlg32.lib ole32.lib uuid.lib
  31. OBJS=appbar.obj util.obj
  32. RES=appbar-$(LANG).res
  33.  
  34. all: appbar
  35.  
  36. appbar: $(OBJS) $(RES)
  37.     link $(LINKOPTS) -out:appbar.exe \
  38.     $(OBJS) $(RES) $(LIBS)
  39.  
  40. clean:
  41.     del *.obj
  42.     del *.res
  43.     del *.exe
  44.     del *.ncb
  45.     del *.aps
  46.